golang.org/x/net/http2.dataBuffer.chunks (field)

17 uses

	golang.org/x/net/http2 (current package)
		databuffer.go#L69: 	chunks   [][]byte
		databuffer.go#L93: 		if b.r == len(b.chunks[0]) {
		databuffer.go#L94: 			putDataBufferChunk(b.chunks[0])
		databuffer.go#L95: 			end := len(b.chunks) - 1
		databuffer.go#L96: 			copy(b.chunks[:end], b.chunks[1:])
		databuffer.go#L97: 			b.chunks[end] = nil
		databuffer.go#L98: 			b.chunks = b.chunks[:end]
		databuffer.go#L106: 	if len(b.chunks) == 1 {
		databuffer.go#L107: 		return b.chunks[0][b.r:b.w]
		databuffer.go#L109: 	return b.chunks[0][b.r:]
		databuffer.go#L139: 	if len(b.chunks) != 0 {
		databuffer.go#L140: 		last := b.chunks[len(b.chunks)-1]
		databuffer.go#L146: 	b.chunks = append(b.chunks, chunk)